home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 7 / Apprentice-Release7.iso / Source Code / Libraries / HQX 1.0 / example / MakeFile < prev   
Encoding:
Makefile  |  1997-07-05  |  1.7 KB  |  53 lines  |  [TEXT/MPS ]

  1. # file MakeFile
  2. # BinHex decoder/encoder routines, example MPW Tool MakeFile.
  3. # Copyright (c) 1995, 1996, 1997 by John Montbriand.  All Rights Reserved.
  4. # Permission hereby granted for public use.
  5. # Distribute freely in areas where the laws of copyright apply.
  6. # USE AT YOUR OWN RISK.
  7. # DO NOT DISTRIBUTE MODIFIED COPIES.
  8. # Comments/questions/postcards* to the author at the address:
  9. #   John Montbriand
  10. #   P.O. Box. 1133
  11. #   Saskatoon Saskatchewan Canada
  12. #   S7K 3N2
  13. # or by email at:
  14. #   tinyjohn@sk.sympatico.ca
  15. # *if you mail a postcard, then I will provide you with technical support
  16. # regarding questions you may have about this file.
  17.  
  18.  
  19. hqxtool ƒƒ hqxtool.r hqxtool.rsrc
  20.     Rez -t MPST -c 'MPS ' -i "{RIncludes}" hqxtool.r -o hqxtool
  21.  
  22. hqxtool ƒƒ :obj:hqx.c.68K :obj:hqxtool.c.68K hqxtool.r hqxtool.rsrc
  23.     Link -ac 4 -mf -o hqxtool ∂
  24.         -t MPST -c 'MPS ' -sym off ∂
  25.         :obj:hqx.c.68K :obj:hqxtool.c.68K ∂
  26.         {CLibraries}StdCLib.o ∂
  27.         {Libraries}Interface.o ∂
  28.         {Libraries}MacRuntime.o ∂
  29.         {Libraries}ToolLibs.o ∂
  30.         {Libraries}IntEnv.o
  31.  
  32.  
  33. hqxtool ƒƒ :obj:hqx.c.PPC :obj:hqxtool.c.PPC hqxtool.r hqxtool.rsrc
  34.     PPCLink -t MPST -c 'MPS ' -o hqxtool ∂
  35.         :obj:hqx.c.PPC :obj:hqxtool.c.PPC ∂
  36.         {SharedLibraries}InterfaceLib ∂
  37.         {SharedLibraries}StdCLib ∂
  38.         {PPCLibraries}PPCCRuntime.o ∂
  39.         {PPCLibraries}StdCRuntime.o ∂
  40.         {PPCLibraries}PPCToolLibs.o
  41.  
  42. :obj:hqx.c.68K ƒ hqx.c hqx.h
  43.     SC -align power -proto strict hqx.c -o :obj:hqx.c.68K
  44.  
  45. :obj:hqx.c.PPC ƒ hqx.c hqx.h
  46.     MrC -align power -proto strict hqx.c -o :obj:hqx.c.PPC
  47.  
  48. :obj:hqxtool.c.68K ƒ hqxtool.c hqx.c hqx.h
  49.     SC -align power -proto strict hqxtool.c -o :obj:hqxtool.c.68K
  50.  
  51. :obj:hqxtool.c.PPC ƒ hqxtool.c hqx.c hqx.h
  52.     MrC -align power -proto strict hqxtool.c -o :obj:hqxtool.c.PPC
  53.